PasswordStore

public interface PasswordStore implements ProfileService

A service for working with logins and passwords saved in the Chromium password store.

Since

7.20

See also

Functions

Link copied to clipboard
public abstract String add(PasswordRecord passwordRecord)
Adds a new record to the password store.
Link copied to clipboard
public abstract List<PasswordRecord> all()
Returns all saved and blacklisted (marked as "never-saved") records from the password store.
Link copied to clipboard
public abstract List<PasswordRecord> allNeverSaved()
Returns only blacklisted (marked as "never-saved") records from the password store.
Link copied to clipboard
public abstract List<PasswordRecord> allSaved()
Returns only saved records from the password store.
Link copied to clipboard
public abstract void clear()
Clears all records in the password store.
Link copied to clipboard
public abstract Profile profile()
Returns the profile of this service.
Link copied to clipboard
public abstract void removeByUrl(String url)
Removes records associated with this url from the password store.